1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2024-06-01 20:30:48 +00:00
awesome-cheatsheets/.eslintrc.js

22 lines
484 B
JavaScript
Raw Normal View History

2018-09-09 14:50:38 +00:00
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: {}
}