mirror of
https://github.com/paperdash/device-epd.git
synced 2024-11-16 06:13:17 +00:00
19 lines
288 B
JavaScript
19 lines
288 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
browser: true,
|
|
node: true,
|
|
},
|
|
parserOptions: {
|
|
parser: 'babel-eslint',
|
|
},
|
|
extends: 'vuetify',
|
|
// add your custom rules here
|
|
rules: {
|
|
},
|
|
globals: {
|
|
__BUILD_TIME__: 'readonly',
|
|
__COMMIT_HASH__: 'readonly',
|
|
}
|
|
}
|