cloudservices/.eslintrc.json

47 lines
1.1 KiB
JSON
Raw Permalink Normal View History

2019-10-14 18:00:16 -04:00
{
2019-10-15 14:03:40 -04:00
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
}
},
2019-10-14 18:00:16 -04:00
"env": {
"es6": true,
"node": true
},
"extends": [
"airbnb-base"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
2019-10-15 14:03:40 -04:00
"linebreak-style": "off",
"no-unused-vars": "off",
"max-len": "off",
"import/no-dynamic-require": "off",
"global-require": "off",
"class-methods-use-this":"off",
2019-10-15 18:36:44 -04:00
"no-restricted-syntax": "off",
"camelcase": "off",
"indent": "warn",
2019-10-15 20:34:13 -04:00
"object-curly-newline": "off",
"import/prefer-default-export": "off",
"no-useless-constructor": "off",
2019-12-16 19:23:44 -05:00
"@typescript-eslint/no-useless-constructor": 2,
2021-09-11 16:38:35 -04:00
"import/extensions": "off",
2021-10-12 00:35:36 -04:00
"consistent-return": "off",
"no-continue": "off"
2019-10-14 18:00:16 -04:00
}
2021-09-11 16:38:35 -04:00
}