mirror of
https://github.com/marktext/marktext.git
synced 2025-05-02 23:12:45 +08:00

* Update build tools (babel, eslint and webpack) * Fix karma configuration (unit tests) * Fix invalid glob path on Windows * Fix codemirror editor modes location for development * Break welcome text on smaller terminals * Fix ESLint error and reduce PlantUML compression level
74 lines
1.6 KiB
JavaScript
74 lines
1.6 KiB
JavaScript
module.exports = {
|
|
root: true,
|
|
parserOptions: {
|
|
parser: '@babel/eslint-parser',
|
|
ecmaVersion: 8,
|
|
ecmaFeatures: {
|
|
impliedStrict: true
|
|
},
|
|
sourceType: 'module'
|
|
},
|
|
env: {
|
|
browser: true,
|
|
es6: true,
|
|
node: true
|
|
},
|
|
extends: [
|
|
'standard',
|
|
'eslint:recommended',
|
|
'plugin:vue/base',
|
|
'plugin:import/errors',
|
|
'plugin:import/warnings'
|
|
],
|
|
globals: {
|
|
__static: true
|
|
},
|
|
plugins: [
|
|
'html',
|
|
'vue'
|
|
],
|
|
rules: {
|
|
// allow paren-less arrow functions
|
|
'arrow-parens': "off",
|
|
// allow async-await
|
|
'generator-star-spacing': "off",
|
|
// allow console
|
|
'no-console': "off",
|
|
// allow debugger during development
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? "error" : "off",
|
|
'no-return-assign': "warn",
|
|
'no-new': "warn",
|
|
// disallow semicolons
|
|
semi: [2, "never"],
|
|
'require-atomic-updates': "off",
|
|
// TODO: fix these errors someday
|
|
'prefer-const': "off",
|
|
'no-new': "off",
|
|
'no-mixed-operators': "off",
|
|
'no-prototype-builtins': "off",
|
|
'no-return-await': "off",
|
|
'accessor-pairs': "off",
|
|
// Workaround #2422.
|
|
'template-curly-spacing': "off",
|
|
'indent' : "off"
|
|
},
|
|
settings: {
|
|
'import/resolver': {
|
|
alias: {
|
|
map: [
|
|
['common', './src/common'],
|
|
// Normally only valid for renderer/
|
|
['@', './src/renderer'],
|
|
['muya', './src/muya']
|
|
],
|
|
extensions: ['.js', '.vue', '.json', '.css', '.node']
|
|
}
|
|
}
|
|
},
|
|
ignorePatterns: [
|
|
'node_modules',
|
|
'src/muya/dist/**/*',
|
|
'src/muya/webpack.config.js'
|
|
]
|
|
}
|