mirror of
https://github.com/tachiyomiorg/website.git
synced 2024-11-01 15:35:06 +01:00
44 lines
474 B
JavaScript
44 lines
474 B
JavaScript
|
module.exports = {
|
||
|
env: {
|
||
|
browser: true,
|
||
|
es6: true,
|
||
|
},
|
||
|
|
||
|
extends: [
|
||
|
"vuepress",
|
||
|
"prettier"
|
||
|
],
|
||
|
|
||
|
globals: {
|
||
|
Atomics: "readonly",
|
||
|
SharedArrayBuffer: "readonly",
|
||
|
},
|
||
|
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 2018,
|
||
|
sourceType: "module",
|
||
|
},
|
||
|
|
||
|
rules: {
|
||
|
"prettier/prettier": [
|
||
|
"error",
|
||
|
{
|
||
|
endOfLine: "auto",
|
||
|
},
|
||
|
],
|
||
|
"import/no-unresolved": [
|
||
|
2,
|
||
|
{
|
||
|
ignore: [
|
||
|
"^@",
|
||
|
],
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
|
||
|
plugins: [
|
||
|
"vue",
|
||
|
"prettier",
|
||
|
"markdown",
|
||
|
],
|
||
|
}
|