@tyntec/node-red-contrib-tyntec
Version:
[](https://tyntec.com)
45 lines (44 loc) • 888 B
JSON
{
"plugins": ["prettier", "html"],
"env": {
"es6": true,
"node": true
},
"extends": ["eslint:recommended", "plugin:prettier/recommended"],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"project": "./tsconfig.json"
},
"rules": {
"no-console": "warn",
"no-unused-vars": ["off"],
"quotes": ["off"],
"eqeqeq": ["warn", "always"],
"no-process-env": ["off"],
"no-var": ["warn"],
"sort-imports": ["off"],
"func-style": ["off"],
"prefer-arrow-callback": ["error"],
"react/display-name": "off",
"prettier/prettier": [
"warn",
{},
{
"usePrettierrc": true
}
]
},
"overrides": [
{
"files": [ "*.html" ],
"rules": {
"no-undef": [ "off" ]
}
}
]
}