Skip to main content
Module

x/dayjs/.eslintrc.json

⏰ Day.js 2kB immutable date-time library alternative to Moment.js with the same modern API
Go to Latest
File
{ "extends": "airbnb-base", "plugins": [ "jest" ], "env": { "jest/globals": true }, "globals": { "window": true, "dayjs": true }, "rules": { "semi": [ 2, "never" ], "comma-dangle": [ "error", "never" ], "no-param-reassign": [ 0 ], "func-names": [ 0 ], "import/no-extraneous-dependencies": [ 0 ], "import/no-unresolved": [ 2, { "ignore": [ "dayjs" ] } ], "import/extensions": [ 2, "never" ] }}