1
Fork 0

add ESLint config, etc.

Dieser Commit ist enthalten in:
Conduitry 2020-04-05 16:50:42 -04:00
Ursprung 11cc2c8682
Commit 3bee48b548
3 geänderte Dateien mit 16 neuen und 0 gelöschten Zeilen

6
.eslintrc.js Normale Datei
Datei anzeigen

@ -0,0 +1,6 @@
module.exports = {
root: true,
extends: '@conduitry',
env: { node: false },
globals: { GM: 'readable', unsafeWindow: 'readable' },
};

5
.gitignore vendored Normale Datei
Datei anzeigen

@ -0,0 +1,5 @@
/node_modules/
/package-lock.json
/pnpm-lock.yaml
/shrinkwrap.yaml
/yarn.lock

5
package.json Normale Datei
Datei anzeigen

@ -0,0 +1,5 @@
{
"devDependencies": {
"@conduitry/eslint-config": "git+https://chor.date/eslint-config"
}
}