Skip to content
Commits on Source (7)
{
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"extends": [
"eslint:recommended",
"plugin:meteor/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/react",
"plugin:react/recommended",
"airbnb",
"plugin:prettier/recommended",
"prettier/react"
],
"settings": {
"import/resolver": {
"meteor": {
"extensions": [".js"]
}
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"extends": [
"eslint:recommended",
"plugin:meteor/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/react",
"plugin:react/recommended",
"airbnb",
"plugin:prettier/recommended",
"prettier/react"
],
"settings": {
"import/resolver": {
"meteor": {
"extensions": [".js"]
}
},
"globals": {
"msg": false
},
"plugins": ["meteor", "import", "prettier", "i18n", "react", "jsx"],
"rules": {
"no-restricted-imports": [
"error",
"@material-ui/core",
"@material-ui/icons",
"@material-ui/lab"
],
"react/jsx-filename-extension": "off",
"no-underscore-dangle": "off",
"react/jsx-props-no-spreading": "off",
"no-nested-ternary": "off",
"prettier/prettier": "error",
"max-len": [
"error",
{
"code": 120,
"ignoreComments": true
}
]
},
"env": {
"browser": true,
"jest": true,
"meteor": true,
"es6": true,
"node": true
}
},
"globals": {
"msg": false
},
"plugins": ["meteor", "import", "prettier", "i18n", "react", "jsx"],
"rules": {
"no-restricted-imports": ["error", "@material-ui/core", "@material-ui/icons", "@material-ui/lab"],
"react/jsx-filename-extension": "off",
"no-underscore-dangle": "off",
"react/jsx-props-no-spreading": "off",
"react/forbid-prop-types": "off",
"no-nested-ternary": "off",
"prettier/prettier": "error",
"max-len": [
"error",
{
"code": 120,
"ignoreComments": true
}
]
},
"env": {
"browser": true,
"jest": true,
"meteor": true,
"es6": true,
"node": true
}
\ No newline at end of file
}
This diff is collapsed.
{
"name": "frontal-nextcloud",
"version": "1.0.2",
"version": "1.0.3",
"private": true,
"scripts": {
"start": "meteor --exclude-archs 'web.browser.legacy, web.cordova' --settings ../config/settings.development.json",
......@@ -66,5 +66,8 @@
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-standard": "^4.1.0",
"prettier": "^2.5.1"
},
"overrides": {
"semver": "^7.5.2"
}
}
# Changelog
### [1.0.3](https://gitlab.mim-libre.fr/alphabet/frontal-nextcloud/compare/release/1.0.2...release/1.0.3) (2023-08-24)
### Bug Fixes
* **lint:** update eslint settings ([fc65745](https://gitlab.mim-libre.fr/alphabet/frontal-nextcloud/commit/fc65745ed892f65478b2c56c3b1644cfbe5a3954))
### [1.0.2](https://gitlab.mim-libre.fr/alphabet/frontal-nextcloud/compare/release/1.0.1...release/1.0.2) (2023-05-05)
......