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.
apollo-server/.eslintrc.json

33 lines
685 B
JSON

{
"root": true,
"env": {
"node": true
},
"extends": [
"standard"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"new-parens": 1,
"no-bitwise": 1,
"brace-style": "warn",
"no-namespace": 0,
"indent": ["warn", 4],
"no-internal-module": 0,
"max-classes-per-file": 0,
"no-var-requires": 0,
"array-type": 0,
"semi": ["error", "always"],
"semi-style": ["error", "last"],
"no-extra-semi": "off"
}
}