mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
This PR establishes a base Snowboard framework in the Backend. While we won't likely have any specific Snowboard widgets or functionality in the 1.1 branch, it will allow people to use Snowboard in the Backend should they wish. Fixes #541. Co-authored-by: Luke Towers <github@luketowers.ca>
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"]
|
|
}
|
|
}
|