radix-theme-generator
Version:
A utility for generating themes for the Radix Themes UI library
40 lines (39 loc) • 966 B
Plain Text
{
"env": {
"browser": true,
"node": true,
"es6": true,
"jest": true
},
"parser": "@typescript-eslint/parser",
"plugins": ["prettier", "eslint-plugin-import"],
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/ban-ts-comment": "off",
"import/order": [
"error",
{
"groups": ["builtin", "external", "internal"],
"pathGroups": [
{
"pattern": "react",
"group": "external",
"position": "before"
}
],
"pathGroupsExcludedImportTypes": ["react"],
"newlines-between": "always",
"alphabetize": {
"order": "asc",
"caseInsensitive": true
}
}
],
"prettier/prettier": "error"
}
}