mirror of
https://github.com/tachiyomiorg/website.git
synced 2024-11-01 07:25:06 +01:00
8cdebba09d
* Clean foundation * Carry over stuff * Amend some things * Delete mdi-iconfont.scss * Remove forgotten code
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",
|
|
],
|
|
} |