Lightweight, stylish, and ethical share buttons
https://shareon.js.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
487 B
26 lines
487 B
{ |
|
"root": true, |
|
"env": { |
|
"browser": true |
|
}, |
|
"extends": ["eslint:recommended", "plugin:unicorn/recommended", "prettier"], |
|
"parserOptions": { |
|
"ecmaVersion": "latest", |
|
"sourceType": "module" |
|
}, |
|
"overrides": [ |
|
{ |
|
"files": ["postcss.config.js", "vite.config.js"], |
|
"env": { |
|
"node": true, |
|
"browser": false |
|
} |
|
}, |
|
{ |
|
"files": ["postcss.config.js"], |
|
"rules": { |
|
"unicorn/prefer-module": 0 |
|
} |
|
} |
|
] |
|
}
|
|
|