tibetan-date-calculator
Version:
A library to calculate tibetan calendar details. It is based on Svante Janson's paper www2.math.uu.se/~svante/papers/calendars/tibet.pdf
31 lines • 847 B
JSON
{
"extends": ["airbnb-base", "plugin:@typescript-eslint/recommended"],
"plugins": ["@typescript-eslint"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"warnOnUnsupportedTypeScriptVersion": false,
"project": "tsconfig.json",
"ecmaVersion": 2018,
"sourceType": "module",
"createDefaultProgram": true
},
"rules": {
"max-len": [1, 120, 2],
"quote-props": [1, "consistent-as-needed"],
"no-cond-assign": [2, "except-parens"],
"radix": 0,
"no-unused-vars": "warn",
"no-plusplus": "off",
"comma-dangle": "off"
},
"env": {
"jest": true
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
}
}
}