Skip to content
This repository has been archived by the owner on Mar 18, 2022. It is now read-only.

Commit

Permalink
eslint: re-eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
danielsss committed Sep 17, 2018
1 parent de843b5 commit 0b6df4e
Show file tree
Hide file tree
Showing 9 changed files with 10,965 additions and 10,864 deletions.
11 changes: 9 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
module.exports = {
"extends": [
"eslint:recommended",
"./node_modules/eslint-config-daniels/lib/index.js"
"./node_modules/eslint-config-xadillax-style/node/index.js"
],
"rules": {}
"rules": {
'quotes': [
2, 'single',
{
allowTemplateLiterals: true
}
]
}
};
14 changes: 7 additions & 7 deletions bin/xto.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ const opts = require('nomnom');

opts
.option('company', {
abbr: 'c',
help: 'Specify a express company. (name, short name or code)',
required: true,
abbr: 'c',
help: 'Specify a express company. (name, short name or code)',
required: true
})
.option('number', {
position: 0,
help: 'The express number.',
required: true,
type: 'string',
position: 0,
help: 'The express number.',
required: true,
type: 'string'
})
.script('xto')
.parse();
Expand Down
Loading

0 comments on commit 0b6df4e

Please sign in to comment.