@simonbluhm/timely
Version:
working with date and time in javascript
23 lines • 474 B
JSON
{
"extends": [
"plugin:prettier/recommended"
],
"plugins": ["prettier"],
"parser": "esprima",
"parserOptions": {
"sourceType": "module"
},
"env": {
"es6": true,
"browser": true
},
"rules": {
"prettier/prettier": [
"error", {
"endOfLine": "auto",
"singleQuote": true,
"printWidth": 120
}
]
}
}