29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-07-07 12:33:40 +00:00
cms/build/.eslintrc
2021-02-20 21:30:44 +00: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": true,
// An environment defines global variables that are predefined.
"env": {
"browser": true,
"es6": true,
"node": true
},
// Additional global variables your script accesses during execution
"globals": {
"Joomla": true,
"MediaManager" : true,
"bootstrap": true
},
// Rule overrides
"rules": {
// Disable no-params-reassign for properties
"no-param-reassign": ["error", { "props": false }],
// Allow usage of dev-dependencies in js files in build directory
"import/no-extraneous-dependencies": ["error", {"devDependencies": ["build/**/*.js"]}],
// Allow strict mode (we are not dealing with modules)
"strict": [0],
// Disable alert rule till we have a CE in place
"no-alert": 0,
// Allow extensions on imports
"import/extensions": 0
}
}