mirror of
https://github.com/namibia/awesome-cheatsheets.git
synced 2024-11-14 17:24:04 +00:00
20 lines
477 B
JavaScript
20 lines
477 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
browser: true,
|
|
node: true
|
|
},
|
|
parserOptions: {
|
|
parser: "babel-eslint"
|
|
},
|
|
extends: [
|
|
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
|
|
// consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
|
|
"plugin:vue/essential"
|
|
],
|
|
// required to lint *.vue files
|
|
plugins: ["vue"],
|
|
// add your custom rules here
|
|
rules: {}
|
|
};
|