You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
paste/.eslintrc.json

20 lines
479 B
JSON

{
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 8
},
"extends": ["eslint:recommended"],
"rules": {
"indent": ["error", "tab"],
"quotes": ["error", "single", "avoid-escape"],
"linebreak-style": ["error", "unix"],
"semi": ["error", "always"],
"no-trailing-spaces": ["warn"],
"comma-dangle": ["error"],
"no-console": ["warn", { "allow": ["warn", "error"] }],
"space-before-function-paren": ["error", "never"]
}
}