sqlite-tree-store
Version:
Simple document store over SQLite
19 lines (17 loc) • 351 B
JavaScript
// https://eslint.org/docs/user-guide/configuring
module.exports = {
root: true,
env: {
node: true
},
extends: [
// https://github.com/standard/standard/blob/master/docs/RULES-en.md
'standard'
],
// add your custom rules here
rules: {
'no-tabs': 'off',
'no-multi-spaces': 'off',
'indent': ['error', 'tab']
}
}