kute.js/.eslintrc
thednp b36f26195c Attempt to address #109
Please test latest master

Co-Authored-By: Thamjith Thaha <jithuthaha8@gmail.com>
Co-Authored-By: Frederic R. <frederic.rousseau@storyful.com>
2021-11-10 17:05:07 +02:00

40 lines
1.1 KiB
Plaintext

{
"extends": [
// Extend the airbnb eslint config
"airbnb-base"
// Vue
// "plugin:vue/vue3-recommended"
],
// "parser": "vue-eslint-parser",
"parserOptions": {
"sourceType": "module"
},
// ESLint will not look in parent folders for eslint configs
"root": false,
// An environment defines global variables that are predefined.
"env": {
"browser": true,
"es6": true,
"node": true
},
// Rule overrides
"rules": {
// Disable no-restricted-globals for global objects
"no-restricted-globals": 0,
// Disable no-params-reassign for properties
"no-param-reassign": ["error", { "props": false }],
// Allow strict mode (we are not dealing with modules)
"strict": [0],
// Disable bitwise
"no-bitwise": 0,
// Allow use of "private methods"
"no-underscore-dangle": 0,
// Disable alert rule till we have a CE in place
"no-alert": 0,
// Allow extensions on imports
"import/extensions": 0,
// Allow exporting mutable 'let' binding
"import/no-mutable-exports": 0
}
}