mirror of
https://github.com/simonmichael/hledger.git
synced 2024-11-07 21:15:19 +03:00
e922a4aac5
Added defacto JavaScript linting with eslint. I also included an editor config file to aid common style. (http://editorconfig.org/#example-file)
9 lines
120 B
JavaScript
9 lines
120 B
JavaScript
module.exports = {
|
|
"extends": "eslint:recommended",
|
|
"root": true,
|
|
"env": {
|
|
"browser": true,
|
|
"jquery": true
|
|
}
|
|
};
|