Skip to content

Commit

Permalink
Merge pull request rdmorganiser#592 from rdmorganiser/refactor_elements
Browse files Browse the repository at this point in the history
Refactor elements
  • Loading branch information
jochenklar committed Jun 23, 2023
2 parents 86f8d75 + 577e37f commit 6a628c2
Show file tree
Hide file tree
Showing 422 changed files with 65,887 additions and 8,749 deletions.
46 changes: 46 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
module.exports = {
"globals": {
"gettext": true,
"ngettext": true,
"interpolate": true,
"process": true,
"require": true
},
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"overrides": [],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"indent": "off",
"no-empty-pattern": "off",
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"never"
]
},
"settings": {
"react": {
"version": "detect"
}
}
}
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ env3
.coverage
htmlcov

node_modules

build
dist
*.egg-info
Expand All @@ -29,3 +31,5 @@ dist

.pytest_cache
.on-save.json

rdmo/management/static
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
18.1.0
4 changes: 3 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
graft rdmo
prune config
prune rdmo/management/assets

global-exclude __pycache__
global-exclude *.py[co]

assets

include requirements.txt

0 comments on commit 6a628c2

Please sign in to comment.