1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2024-05-29 19:00:47 +00:00
awesome-cheatsheets/.eslintrc.js
2018-09-11 16:21:25 +02:00

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: {}
};