Skip to content
This repository was archived by the owner on Apr 23, 2026. It is now read-only.

Commit e52204d

Browse files
committed
Revert "Archive (#255)"
This reverts commit e264e42.
1 parent e264e42 commit e52204d

557 files changed

Lines changed: 35513 additions & 35627 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.eslintignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.eslintrc.js

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,8 @@ module.exports = {
77
node: true,
88
jest: true,
99
},
10-
globals: {
11-
"jQuery": true,
12-
"Faceted": true,
13-
"FacetedEdit": true,
14-
"FacetedTree": true
15-
},
1610
parser: "@babel/eslint-parser",
17-
ignorePatterns: [
18-
"cache/",
19-
"coverage/",
20-
"dist/",
21-
"node_modules/",
22-
"stats.json",
23-
"style/",
24-
],
11+
ignorePatterns: ["dist/", "docs/", "node_modules/"],
2512
rules: {
2613
"no-debugger": 1,
2714
"no-duplicate-imports": 1,
@@ -31,4 +18,5 @@ module.exports = {
3118
"no-self-assign": 0,
3219
"no-useless-escape": 0,
3320
},
21+
globals: {},
3422
};

.github/workflows/black.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
# install black
2222
- name: install black
23-
run: pip install -c constraints.txt black
23+
run: pip install black
2424

2525
# run black
2626
- name: run black

.github/workflows/docker.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
strategy:
77
fail-fast: true
88
matrix:
9-
plone: ["5.2.9"]
9+
plone: ["5.2.8"]
1010

1111
steps:
1212
- uses: actions/checkout@v2
@@ -19,6 +19,10 @@ jobs:
1919
run: |
2020
docker run -i --rm -v $(pwd)/eea:/code eeacms/pyflakes
2121
22+
- name: jslint
23+
run: |
24+
docker run -i --rm -v $(pwd)/eea:/code eeacms/jslint4java
25+
2226
- name: zptlint
2327
run: |
2428
docker run -i --rm -v $(pwd)/eea:/code eeacms/zptlint

.github/workflows/eslint.yml

Lines changed: 0 additions & 35 deletions
This file was deleted.

.github/workflows/flake8.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ jobs:
2020

2121
# install flake8
2222
- name: install flake8
23-
run: pip install -c constraints.txt flake8
23+
run: pip install flake8
2424

2525
# run black
2626
- name: run flake8
27-
run: flake8 --ignore=E203,W503 eea/ setup.py
27+
run: flake8 --ignore=E203,W503,C901 eea/ setup.py

.github/workflows/prettier.yml

Lines changed: 0 additions & 39 deletions
This file was deleted.

.github/workflows/pyroma.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Pyroma
2+
on: [push]
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
strategy:
7+
fail-fast: false
8+
matrix:
9+
python-version: [3.8]
10+
11+
steps:
12+
# git checkout
13+
- uses: actions/checkout@v2
14+
15+
# python setup
16+
- name: Set up Python ${{ matrix.python-version }}
17+
uses: actions/setup-python@v1
18+
with:
19+
python-version: ${{ matrix.python-version }}
20+
21+
# install pyroma
22+
- name: install pyroma
23+
run: pip install pyroma
24+
25+
# run pyroma
26+
- name: run pyroma
27+
run: pyroma -n 10 -d .

.github/workflows/test.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,8 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
python: [3.8, 3.9]
10-
plone: ["6.0-latest", "5.2-latest"]
11-
exclude:
12-
- plone: "5.2-latest"
13-
python: 3.9
14-
- plone: "6.0-latest"
15-
python: 3.8
9+
python: [ "3.8" ]
10+
plone: ["5.2.8"]
1611

1712
steps:
1813
- uses: actions/checkout@v2

.github/workflows/zpretty.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
# install zpretty
2222
- name: install zpretty
23-
run: pip install -c constraints.txt zpretty
23+
run: pip install zpretty
2424

2525
# run zpretty
2626
- name: run zpretty

0 commit comments

Comments
 (0)