Skip to content

Commit 07c5f88

Browse files
committed
fix: removing unused eslint-disable directive
1 parent 30d0dcb commit 07c5f88

404 files changed

Lines changed: 28746 additions & 28746 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.

.codeclimate.yml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
1-
# Save as .codeclimate.yml (note leading .) in project root directory
2-
version: "2"
3-
languages:
4-
Ruby: false
5-
JavaScript: true
6-
PHP: false
7-
checks:
8-
file-lines:
9-
config:
10-
threshold: 500
11-
method-lines:
12-
config:
13-
threshold: 75
14-
method-complexity:
15-
config:
16-
threshold: 10
17-
similar-code:
18-
config:
19-
threshold: 65
20-
plugins:
21-
duplication:
22-
enabled: true
23-
config:
24-
languages:
25-
javascript:
26-
mass_threshold: 110
27-
count_threshold: 3
28-
exclude_paths:
29-
- "public/vendor/*"
1+
# Save as .codeclimate.yml (note leading .) in project root directory
2+
version: "2"
3+
languages:
4+
Ruby: false
5+
JavaScript: true
6+
PHP: false
7+
checks:
8+
file-lines:
9+
config:
10+
threshold: 500
11+
method-lines:
12+
config:
13+
threshold: 75
14+
method-complexity:
15+
config:
16+
threshold: 10
17+
similar-code:
18+
config:
19+
threshold: 65
20+
plugins:
21+
duplication:
22+
enabled: true
23+
config:
24+
languages:
25+
javascript:
26+
mass_threshold: 110
27+
count_threshold: 3
28+
exclude_paths:
29+
- "public/vendor/*"
3030
- "test/*"

.devcontainer/Dockerfile

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM mcr.microsoft.com/devcontainers/javascript-node:1-22-bookworm
2-
3-
RUN apt-get update \
4-
&& apt-get install -y \
5-
iputils-ping \
6-
redis-server \
7-
&& rm -rf /var/lib/apt/lists/*
8-
9-
RUN curl https://qlty.sh | /bin/bash \
10-
&& mv ~/.qlty/bin/qlty /usr/local/bin/qlty \
11-
&& rm -rf ~/.qlty \
12-
&& qlty --version
1+
FROM mcr.microsoft.com/devcontainers/javascript-node:1-22-bookworm
2+
3+
RUN apt-get update \
4+
&& apt-get install -y \
5+
iputils-ping \
6+
redis-server \
7+
&& rm -rf /var/lib/apt/lists/*
8+
9+
RUN curl https://qlty.sh | /bin/bash \
10+
&& mv ~/.qlty/bin/qlty /usr/local/bin/qlty \
11+
&& rm -rf ~/.qlty \
12+
&& qlty --version

.dockerignore

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
.*
2-
logs
3-
test
4-
node_modules
5-
commitlint.config.js
6-
nodebb.bat
7-
renovate.json
8-
*.yml
9-
*.md
10-
Dockerfile
1+
.*
2+
logs
3+
test
4+
node_modules
5+
commitlint.config.js
6+
nodebb.bat
7+
renovate.json
8+
*.yml
9+
*.md
10+
Dockerfile

.editorconfig

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
root = true
2-
3-
[{*.js, *.css, *.tpl, *.json}]
4-
indent_style = tab
5-
end_of_line = lf
6-
charset = utf-8
7-
trim_trailing_whitespace = true
8-
insert_final_newline = false
1+
root = true
2+
3+
[{*.js, *.css, *.tpl, *.json}]
4+
indent_style = tab
5+
end_of_line = lf
6+
charset = utf-8
7+
trim_trailing_whitespace = true
8+
insert_final_newline = false

.gitattributes

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# These files are text and should be normalized (convert crlf => lf)
2-
*.json text
3-
*.css text
4-
*.less text
5-
*.tpl text
6-
*.html text
7-
*.js text
8-
*.md text
9-
10-
# Images should be treated as binary
11-
# (binary is a macro for -text -diff)
12-
*.png binary
1+
# These files are text and should be normalized (convert crlf => lf)
2+
*.json text
3+
*.css text
4+
*.less text
5+
*.tpl text
6+
*.html text
7+
*.js text
8+
*.md text
9+
10+
# Images should be treated as binary
11+
# (binary is a macro for -text -diff)
12+
*.png binary
1313
*.jpg binary
Lines changed: 47 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,47 @@
1-
name: P1B Starter Task Issue
2-
description: Use this template to describe the Qlty smell that you will refactor for P1B.
3-
title: "P1B: Refactor (<full/path/to/file.js:line_number>): <smell>"
4-
labels: ["P1B"]
5-
body:
6-
- type: markdown
7-
attributes:
8-
value: |
9-
**Instructions:**
10-
* Ensure no one else is working on the same **file + smell**.
11-
* After submitting, comment **"I would like to work on this please!"** to trigger bot assignment.
12-
* Keep evidence focused; do **not** paste a full project dump.
13-
14-
- type: checkboxes
15-
id: uniqueness
16-
attributes:
17-
label: Uniqueness check
18-
options:
19-
- label: I have searched open issues and confirmed this **file + smell** is not already taken.
20-
validations:
21-
required: true
22-
23-
- type: input
24-
id: filepath
25-
attributes:
26-
label: Full path to the JavaScript file
27-
description: Must be under **src/** or **public/src/** and end with **.js**
28-
placeholder: e.g., public/src/client/account/settings.js
29-
validations:
30-
required: true
31-
32-
- type: input
33-
id: scope
34-
attributes:
35-
label: Function(s)/scope targeted
36-
placeholder: e.g., render(), getCategoryTopics(), Flags.validate
37-
validations:
38-
required: true
39-
40-
- type: textarea
41-
id: qlty_logs
42-
attributes:
43-
label: Relevant Qlty output
44-
description: Run `qlty smells --no-snippet <file>` and paste only the lines that prove the smell and provide line numbers.
45-
render: shell
46-
validations:
47-
required: true
1+
name: P1B Starter Task Issue
2+
description: Use this template to describe the Qlty smell that you will refactor for P1B.
3+
title: "P1B: Refactor (<full/path/to/file.js:line_number>): <smell>"
4+
labels: ["P1B"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
**Instructions:**
10+
* Ensure no one else is working on the same **file + smell**.
11+
* After submitting, comment **"I would like to work on this please!"** to trigger bot assignment.
12+
* Keep evidence focused; do **not** paste a full project dump.
13+
14+
- type: checkboxes
15+
id: uniqueness
16+
attributes:
17+
label: Uniqueness check
18+
options:
19+
- label: I have searched open issues and confirmed this **file + smell** is not already taken.
20+
validations:
21+
required: true
22+
23+
- type: input
24+
id: filepath
25+
attributes:
26+
label: Full path to the JavaScript file
27+
description: Must be under **src/** or **public/src/** and end with **.js**
28+
placeholder: e.g., public/src/client/account/settings.js
29+
validations:
30+
required: true
31+
32+
- type: input
33+
id: scope
34+
attributes:
35+
label: Function(s)/scope targeted
36+
placeholder: e.g., render(), getCategoryTopics(), Flags.validate
37+
validations:
38+
required: true
39+
40+
- type: textarea
41+
id: qlty_logs
42+
attributes:
43+
label: Relevant Qlty output
44+
description: Run `qlty smells --no-snippet <file>` and paste only the lines that prove the smell and provide line numbers.
45+
render: shell
46+
validations:
47+
required: true

.github/workflows/gittogether.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
name: gittogether
2-
3-
on:
4-
push:
5-
workflow_dispatch:
6-
7-
permissions:
8-
contents: write
9-
10-
jobs:
11-
summary:
12-
uses: ChrisTimperley/GitTogether-Action/.github/workflows/gittogether.yml@main
13-
with:
14-
release_repo: ChrisTimperley/GitTogether
15-
config: .gittogether.yml
16-
output_svg: activity.svg
17-
branch: gittogether-svg
18-
style: compact
1+
name: gittogether
2+
3+
on:
4+
push:
5+
workflow_dispatch:
6+
7+
permissions:
8+
contents: write
9+
10+
jobs:
11+
summary:
12+
uses: ChrisTimperley/GitTogether-Action/.github/workflows/gittogether.yml@main
13+
with:
14+
release_repo: ChrisTimperley/GitTogether
15+
config: .gittogether.yml
16+
output_svg: activity.svg
17+
branch: gittogether-svg
18+
style: compact

0 commit comments

Comments
 (0)