This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/.eslintrc.js

15 lines
196 B
JavaScript
Raw Permalink Normal View History

2019-03-26 14:52:13 +00:00
module.exports = {
'env': {
'browser': true,
2019-04-14 08:18:38 +00:00
'es6': true,
"node": true
2019-03-26 14:52:13 +00:00
},
'extends': [
'eslint:recommended',
'plugin:vue/recommended'
],
'plugins': [
'vue'
]
}