mirror of
https://github.com/tachiyomiorg/website.git
synced 2024-11-01 07:25:06 +01:00
4db88fe05c
* Update dependencies * Fix ESLint error * Update the rest of the packages
46 lines
501 B
JavaScript
46 lines
501 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
es6: true,
|
|
},
|
|
|
|
extends: [
|
|
"vuepress",
|
|
"prettier"
|
|
],
|
|
|
|
globals: {
|
|
Atomics: "readonly",
|
|
SharedArrayBuffer: "readonly",
|
|
},
|
|
|
|
parserOptions: {
|
|
ecmaVersion: 2018,
|
|
parser: "babel-eslint",
|
|
sourceType: "module",
|
|
},
|
|
|
|
rules: {
|
|
"prettier/prettier": [
|
|
"error",
|
|
{
|
|
endOfLine: "auto",
|
|
},
|
|
],
|
|
"import/no-unresolved": [
|
|
2,
|
|
{
|
|
ignore: [
|
|
"^@",
|
|
],
|
|
},
|
|
],
|
|
},
|
|
|
|
plugins: [
|
|
"vue",
|
|
"prettier",
|
|
"markdown",
|
|
],
|
|
}
|