mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
- Copied restructure from the "wip/inspector-rewrite" branch. - Added manifest and vendor files in "{% snowboard %}" tag. - Used standard Mix config path to auto-register the module.
37 lines
886 B
JSON
37 lines
886 B
JSON
{
|
|
"env": {
|
|
"es6": true,
|
|
"browser": true
|
|
},
|
|
"globals": {
|
|
"Snowboard": "writable"
|
|
},
|
|
"extends": [
|
|
"airbnb-base",
|
|
"plugin:vue/vue3-recommended"
|
|
],
|
|
"rules": {
|
|
"class-methods-use-this": ["off"],
|
|
"indent": ["error", 4, {
|
|
"SwitchCase": 1
|
|
}],
|
|
"max-len": ["off"],
|
|
"new-cap": ["error", { "properties": false }],
|
|
"no-alert": ["off"],
|
|
"no-param-reassign": ["error", {
|
|
"props": false
|
|
}],
|
|
"vue/html-indent": ["error", 4],
|
|
"vue/html-self-closing": ["error", {
|
|
"html": {
|
|
"void": "never",
|
|
"normal": "any",
|
|
"component": "always"
|
|
},
|
|
"svg": "always",
|
|
"math": "always"
|
|
}],
|
|
"vue/multi-word-component-names": ["off"]
|
|
}
|
|
}
|