Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
59 changes: 15 additions & 44 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,46 +1,17 @@
{
"extends": ["@exabyte-io/eslint-config"],
"settings": {
"import/resolver": {
"node": {
"paths": ["src/js"]
},
"exports": {}
}
},
"overrides": [
{
"files": [
"*.js",
"*.ts",
"*.tsx"
],
"extends": [
"@exabyte-io/eslint-config",
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:import/typescript"
],
"parser": "@typescript-eslint/parser",
"rules": {
"@typescript-eslint/ban-ts-comment": "off",
"import/no-absolute-path": "off",
"import/extensions": "off",
"react/forbid-prop-types": "off",
"react/jsx-filename-extension": "off",
"react/require-default-props": "off",
"no-use-before-define": "off",
"no-restricted-exports": "off",
"no-shadow": "off",
"@typescript-eslint/no-use-before-define": [
"error"
]
},
"plugins": [
"@typescript-eslint"
]
}
],
"ignorePatterns": ["dist/*"]
"extends": ["@exabyte-io/eslint-config"],
"ignorePatterns": ["dist/"],
"settings": {
"import/resolver": {
"node": { "extensions": [".js", ".jsx", ".ts", ".tsx"] }
}
},
"overrides": [
{
"files": ["scripts/**/*.ts", "scripts/**/*.js"],
"rules": {
"import/no-extraneous-dependencies": ["error", { "devDependencies": true }]
}
}
]
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -175,3 +175,5 @@ node_modules/
by_category

.python-version

.vscode/
2 changes: 1 addition & 1 deletion .mocharc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extension": ["ts", "js"],
"spec": "tests/js/**/*.test*",
"require": "ts-node/register"
"require": "tests/js/ts-node-register.js"
}
13 changes: 12 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,16 @@
"singleQuote": false,
"printWidth": 100,
"trailingComma": "all",
"tabWidth": 4
"tabWidth": 4,
"overrides": [
{
"files": [
"*.yml",
"*.yaml"
],
"options": {
"tabWidth": 2
}
}
]
}
4 changes: 2 additions & 2 deletions assets/applications/executables/espresso/abcoeff_to_eps.x.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
monitors:
- standard_output
- name: standard_output
results: []
flavors:
abcoeff_to_eps_simple:
input:
- name: abcoeff_to_eps_simple.in
results: []
monitors:
- standard_output
- name: standard_output
applicationName: espresso
executableName: abcoeff_to_eps.x
10 changes: 5 additions & 5 deletions assets/applications/executables/espresso/average.x.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
monitors:
- standard_output
- name: standard_output
results:
- average_potential_profile
- name: average_potential_profile
flavors:
average:
input:
- name: average.in
results: []
monitors:
- standard_output
- name: standard_output
applicationName: espresso
executableName: average.x

average_potential:
input:
- name: average.in
results:
- average_potential_profile
- name: average_potential_profile
monitors:
- standard_output
- name: standard_output
applicationName: espresso
executableName: average.x
10 changes: 5 additions & 5 deletions assets/applications/executables/espresso/bands.x.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
monitors:
- standard_output
- name: standard_output
results:
- band_structure
- name: band_structure
flavors:
bands:
input:
- name: bands.in
monitors:
- standard_output
- name: standard_output
applicationName: espresso
executableName: bands.x

bands_spin_up:
input:
- name: bands_spin_up.in
monitors:
- standard_output
- name: standard_output
applicationName: espresso
executableName: bands.x

bands_spin_dn:
input:
- name: bands_spin_dn.in
monitors:
- standard_output
- name: standard_output
applicationName: espresso
executableName: bands.x
6 changes: 3 additions & 3 deletions assets/applications/executables/espresso/cp.x.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
monitors:
- standard_output
- name: standard_output
results: []
flavors:
cp:
Expand All @@ -8,7 +8,7 @@ flavors:
- name: cp.in
results: []
monitors:
- standard_output
- name: standard_output
applicationName: espresso
executableName: cp.x

Expand All @@ -17,6 +17,6 @@ flavors:
- name: cp_wf.in
results: []
monitors:
- standard_output
- name: standard_output
applicationName: espresso
executableName: cp.x
8 changes: 4 additions & 4 deletions assets/applications/executables/espresso/dos.x.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
monitors:
- standard_output
- name: standard_output
results:
- density_of_states
- name: density_of_states
flavors:
dos:
input:
- name: dos.in
results:
- density_of_states
- name: density_of_states
monitors:
- standard_output
- name: standard_output
applicationName: espresso
executableName: dos.x
4 changes: 2 additions & 2 deletions assets/applications/executables/espresso/dynmat.x.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
monitors:
- standard_output
- name: standard_output
results: []
flavors:
dynmat:
input:
- name: dynmat_grid.in
results: []
monitors:
- standard_output
- name: standard_output
applicationName: espresso
executableName: dynmat.x
8 changes: 4 additions & 4 deletions assets/applications/executables/espresso/epsilon.x.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
monitors:
- standard_output
- name: standard_output
results:
- dielectric_tensor
- name: dielectric_tensor
flavors:
dielectric_tensor:
input:
- name: epsilon.in
results:
- dielectric_tensor
- name: dielectric_tensor
monitors:
- standard_output
- name: standard_output
applicationName: espresso
executableName: epsilon.x
24 changes: 12 additions & 12 deletions assets/applications/executables/espresso/gw.x.yml
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
monitors:
- standard_output
- name: standard_output
results:
- band_structure
- fermi_energy
- band_gaps
- name: band_structure
- name: fermi_energy
- name: band_gaps
flavors:
gw_bands_plasmon_pole:
input:
- name: gw_bands_plasmon_pole.in
results:
- band_structure
- fermi_energy
- band_gaps
- name: band_structure
- name: fermi_energy
- name: band_gaps
monitors:
- standard_output
- name: standard_output
applicationName: espresso
executableName: gw.x

gw_bands_full_frequency:
input:
- name: gw_bands_full_frequency.in
results:
- band_structure
- fermi_energy
- band_gaps
- name: band_structure
- name: fermi_energy
- name: band_gaps
monitors:
- standard_output
- name: standard_output
applicationName: espresso
executableName: gw.x
4 changes: 2 additions & 2 deletions assets/applications/executables/espresso/gww.x.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
monitors:
- standard_output
- name: standard_output
results: []
flavors:
gww_simple:
input:
- name: gww_simple.in
results: []
monitors:
- standard_output
- name: standard_output
applicationName: espresso
executableName: gww.x
4 changes: 2 additions & 2 deletions assets/applications/executables/espresso/head.x.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
monitors:
- standard_output
- name: standard_output
results: []
flavors:
head_simple:
input:
- name: head_simple.in
results: []
monitors:
- standard_output
- name: standard_output
applicationName: espresso
executableName: head.x
16 changes: 8 additions & 8 deletions assets/applications/executables/espresso/hp.x.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
monitors:
- standard_output
- name: standard_output
results:
- hubbard_u
- hubbard_v_nn
- hubbard_v
- name: hubbard_u
- name: hubbard_v_nn
- name: hubbard_v
flavors:
hp:
input:
- name: hp.in
results:
- hubbard_u
- hubbard_v_nn
- hubbard_v
- name: hubbard_u
- name: hubbard_v_nn
- name: hubbard_v
monitors:
- standard_output
- name: standard_output
applicationName: espresso
executableName: hp.x
supportedApplicationVersions:
Expand Down
14 changes: 7 additions & 7 deletions assets/applications/executables/espresso/matdyn.x.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
monitors:
- standard_output
- name: standard_output
results:
- phonon_dos
- phonon_dispersions
- name: phonon_dos
- name: phonon_dispersions
flavors:
matdyn_grid:
input:
- name: matdyn_grid.in
monitors:
- standard_output
- name: standard_output
results:
- phonon_dos
- name: phonon_dos
applicationName: espresso
executableName: matdyn.x

matdyn_path:
input:
- name: matdyn_path.in
monitors:
- standard_output
- name: standard_output
results:
- phonon_dispersions
- name: phonon_dispersions
applicationName: espresso
executableName: matdyn.x
Loading
Loading