scss-reset
Version:
66 lines (65 loc) • 1.15 kB
JSON
{
"env": {
"browser": true,
"es2021": true
},
"extends": "standard",
"overrides": [],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"semi": [
"warn",
"always"
],
"no-unused-vars": [
"warn",
{
"vars": "all",
"args": "none",
"ignoreRestSiblings": false
}
],
"no-console": "off",
"quotes": [
2,
"single",
{
"avoidEscape": true
}
],
"space-before-function-paren": [
"warn",
"never"
],
"padded-blocks": [
"warn",
{
"classes": "always"
}
],
"lines-around-comment": [
"warn",
{
"beforeBlockComment": true,
"beforeLineComment": false
}
],
"no-undef": "off",
"no-multiple-empty-lines": "warn",
"comma-dangle": [
"warn",
{
"arrays": "never",
"objects": "never",
"imports": "never",
"exports": "never",
"functions": "never"
}
],
"no-use-before-define": "off",
"no-template-curly-in-string": "off"
}
}