Skip to content

Commit b984717

Browse files
committed
Revert to 67110bf
1 parent 495459d commit b984717

File tree

165 files changed

+8890
-8890
lines changed

Some content is hidden

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

165 files changed

+8890
-8890
lines changed

.editorconfig

+121-121
Original file line numberDiff line numberDiff line change
@@ -1,121 +1,121 @@
1-
# Copied from: rasa/dotfiles/.editorconfig
2-
# EDIT THE ABOVE FILE OR YOUR CHANGES WILL BE LOST!
3-
# Docs: https://editorconfig.org/#file-format-details
4-
5-
# EditorConfig (is awesome): https://editorconfig.github.io
6-
7-
# * top-most EditorConfig file
8-
root = true
9-
10-
# default style settings
11-
[*]
12-
charset = utf-8
13-
end_of_line = lf
14-
indent_size = 2
15-
indent_style = space
16-
insert_final_newline = true
17-
trim_trailing_whitespace = true
18-
19-
# Batch files require CRLF newlines
20-
[*.{bat,cmd,BAT,CMD}]
21-
# a la VT102/Televideo 950
22-
max_line_length = 132
23-
end_of_line = crlf
24-
25-
# MSVC project files require CRLF newlines
26-
[*.{dsp,dsw,sln,vcproj,vcprops,DSP,DSW,SLN,VCPROJ,VCPROPS}]
27-
max_line_length = 132
28-
end_of_line = crlf
29-
30-
# Google JavaScript Style Guide (https://google.github.io/styleguide/javascriptguide.xml)
31-
[*.js]
32-
max_line_length = 132
33-
# @TODO max_line_length = 80
34-
35-
[*.json]
36-
indent_size = unset
37-
# https://github.com/zaach/jsonlint
38-
# generates files that do not have final newlines
39-
# so, the setting:
40-
# "trailing-newline": false
41-
# was added to
42-
# https://github.com/rasa/workflows/blob/main/.github/linters/.jsonlintrc.json
43-
# per
44-
# https://github.com/prantlf/jsonlint/tree/master?tab=readme-ov-file#usage
45-
# GitHub UI always adds final newlines, when files are edited
46-
insert_final_newline = unset
47-
48-
# Makefiles require tab indentation
49-
[{Makefile{,.*},makefile{,.*},GNUMakefile{,.*},*.mak,*.mk}]
50-
indent_style = tab
51-
max_line_length = 132
52-
# @TODO max_line_length = 80
53-
54-
# Google Python Style Guide (https://google.github.io/styleguide/pyguide.html)
55-
[*.py]
56-
indent_size = 4
57-
max_line_length = 132
58-
# @TODO max_line_length = 80
59-
60-
# Google Shell Style Guide (https://google.github.io/styleguide/shellguide.html)
61-
[*.sh]
62-
# shfmt uses these settings:
63-
# like -i=2
64-
indent_style = space
65-
indent_size = 2
66-
# --language-variant
67-
# shell_variant = posix # like -ln=posix
68-
binary_next_line = true # like -bn
69-
# --case-indent
70-
switch_case_indent = true # like -ci
71-
# space_redirects = true # like -sr
72-
# keep_padding = true # like -kp
73-
# --func-next-line
74-
# function_next_line = true # like -fn
75-
max_line_length = 132
76-
# @TODO max_line_length = 80
77-
78-
[*.vbs]
79-
indent_size = unset
80-
max_line_length = 132
81-
# @TODO max_line_length = 80
82-
83-
# json files without .json extension:
84-
[{.ecrc,.textlintrc}]
85-
insert_final_newline = unset
86-
87-
# unrooted file extensions:
88-
[*.{cmd.*,diff,ignore,patch,txt,wip}]
89-
end_of_line = unset
90-
indent_size = unset
91-
indent_style = unset
92-
insert_final_newline = unset
93-
trim_trailing_whitespace = unset
94-
95-
# unrooted directories:
96-
[{.ignore,.vendor,.wip,ignore,vendor,wip}/**]
97-
end_of_line = unset
98-
indent_size = unset
99-
indent_style = unset
100-
insert_final_newline = unset
101-
trim_trailing_whitespace = unset
102-
103-
# unrooted files:
104-
[{archive,plug.vim}]
105-
end_of_line = unset
106-
indent_size = unset
107-
indent_style = unset
108-
insert_final_newline = unset
109-
trim_trailing_whitespace = unset
110-
111-
# rooted files/directories:
112-
[/{.docker/*,.fonts.conf,.gitconfig,.mylogin.cnf*,.toprc,.vscode/default.code-snippets}]
113-
end_of_line = unset
114-
indent_size = unset
115-
indent_style = unset
116-
insert_final_newline = unset
117-
trim_trailing_whitespace = unset
118-
119-
# cspell:ignore ecrc, jsonlint, Makefiles, mylogin, textlintrc, toprc
120-
121-
# cSpell:ignore Televideo, vcproj, VCPROJ, vcprops, VCPROPS
1+
# Copied from: rasa/dotfiles/.editorconfig
2+
# EDIT THE ABOVE FILE OR YOUR CHANGES WILL BE LOST!
3+
# Docs: https://editorconfig.org/#file-format-details
4+
5+
# EditorConfig (is awesome): https://editorconfig.github.io
6+
7+
# * top-most EditorConfig file
8+
root = true
9+
10+
# default style settings
11+
[*]
12+
charset = utf-8
13+
end_of_line = lf
14+
indent_size = 2
15+
indent_style = space
16+
insert_final_newline = true
17+
trim_trailing_whitespace = true
18+
19+
# Batch files require CRLF newlines
20+
[*.{bat,cmd,BAT,CMD}]
21+
# a la VT102/Televideo 950
22+
max_line_length = 132
23+
end_of_line = crlf
24+
25+
# MSVC project files require CRLF newlines
26+
[*.{dsp,dsw,sln,vcproj,vcprops,DSP,DSW,SLN,VCPROJ,VCPROPS}]
27+
max_line_length = 132
28+
end_of_line = crlf
29+
30+
# Google JavaScript Style Guide (https://google.github.io/styleguide/javascriptguide.xml)
31+
[*.js]
32+
max_line_length = 132
33+
# @TODO max_line_length = 80
34+
35+
[*.json]
36+
indent_size = unset
37+
# https://github.com/zaach/jsonlint
38+
# generates files that do not have final newlines
39+
# so, the setting:
40+
# "trailing-newline": false
41+
# was added to
42+
# https://github.com/rasa/workflows/blob/main/.github/linters/.jsonlintrc.json
43+
# per
44+
# https://github.com/prantlf/jsonlint/tree/master?tab=readme-ov-file#usage
45+
# GitHub UI always adds final newlines, when files are edited
46+
insert_final_newline = unset
47+
48+
# Makefiles require tab indentation
49+
[{Makefile{,.*},makefile{,.*},GNUMakefile{,.*},*.mak,*.mk}]
50+
indent_style = tab
51+
max_line_length = 132
52+
# @TODO max_line_length = 80
53+
54+
# Google Python Style Guide (https://google.github.io/styleguide/pyguide.html)
55+
[*.py]
56+
indent_size = 4
57+
max_line_length = 132
58+
# @TODO max_line_length = 80
59+
60+
# Google Shell Style Guide (https://google.github.io/styleguide/shellguide.html)
61+
[*.sh]
62+
# shfmt uses these settings:
63+
# like -i=2
64+
indent_style = space
65+
indent_size = 2
66+
# --language-variant
67+
# shell_variant = posix # like -ln=posix
68+
binary_next_line = true # like -bn
69+
# --case-indent
70+
switch_case_indent = true # like -ci
71+
# space_redirects = true # like -sr
72+
# keep_padding = true # like -kp
73+
# --func-next-line
74+
# function_next_line = true # like -fn
75+
max_line_length = 132
76+
# @TODO max_line_length = 80
77+
78+
[*.vbs]
79+
indent_size = unset
80+
max_line_length = 132
81+
# @TODO max_line_length = 80
82+
83+
# json files without .json extension:
84+
[{.ecrc,.textlintrc}]
85+
insert_final_newline = unset
86+
87+
# unrooted file extensions:
88+
[*.{cmd.*,diff,ignore,patch,txt,wip}]
89+
end_of_line = unset
90+
indent_size = unset
91+
indent_style = unset
92+
insert_final_newline = unset
93+
trim_trailing_whitespace = unset
94+
95+
# unrooted directories:
96+
[{.ignore,.vendor,.wip,ignore,vendor,wip}/**]
97+
end_of_line = unset
98+
indent_size = unset
99+
indent_style = unset
100+
insert_final_newline = unset
101+
trim_trailing_whitespace = unset
102+
103+
# unrooted files:
104+
[{archive,plug.vim}]
105+
end_of_line = unset
106+
indent_size = unset
107+
indent_style = unset
108+
insert_final_newline = unset
109+
trim_trailing_whitespace = unset
110+
111+
# rooted files/directories:
112+
[/{.docker/*,.fonts.conf,.gitconfig,.mylogin.cnf*,.toprc,.vscode/default.code-snippets}]
113+
end_of_line = unset
114+
indent_size = unset
115+
indent_style = unset
116+
insert_final_newline = unset
117+
trim_trailing_whitespace = unset
118+
119+
# cspell:ignore ecrc, jsonlint, Makefiles, mylogin, textlintrc, toprc
120+
121+
# cSpell:ignore Televideo, vcproj, VCPROJ, vcprops, VCPROPS

.gitattributes

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
* -text
2-
# retain windows line-endings when needed:
3-
*.bat text eol=crlf
4-
*.cmd text eol=crlf
5-
6-
.git/hooks/* text eol=lf
7-
8-
*.sh eol=lf
1+
# retain windows line-endings in case checked out on mac or linux
2+
* text eol=crlf
3+
.git/hooks/* text eol=lf
4+
5+
*.sh eol=lf
6+
7+
# *.cmd eol=crlf
8+
# *.bat eol=crlf

.github/.cspell.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
{
2-
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
3-
"import": [
4-
".cspell/cspell.config.yml"
5-
],
6-
"version": "0.2"
1+
{
2+
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
3+
"import": [
4+
".cspell/cspell.config.yml"
5+
],
6+
"version": "0.2"
77
}

.github/.cspell/correct-words.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
## cSpell:disable
2-
## Copied from: rasa/dotfiles/.github/.cspell/correct-words.txt
3-
## EDIT THE ABOVE FILE OR YOUR CHANGES WILL BE LOST!
4-
## cSpell dictionary of manually curated list of words (and filenames) to treat as correctly spelled
5-
6-
cicd
1+
## cSpell:disable
2+
## Copied from: rasa/dotfiles/.github/.cspell/correct-words.txt
3+
## EDIT THE ABOVE FILE OR YOUR CHANGES WILL BE LOST!
4+
## cSpell dictionary of manually curated list of words (and filenames) to treat as correctly spelled
5+
6+
cicd

.github/.cspell/cspell.config.yml

+26-26
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
---
2-
# cSpell:disable
3-
# Copied from: rasa/dotfiles/.github/.cspell/cspell.config.yml
4-
# EDIT THE ABOVE FILE OR YOUR CHANGES WILL BE LOST!
5-
# yaml-language-server: $schema=https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json
6-
7-
dictionaries:
8-
- '.github/correct-words.txt'
9-
- '.github/ignore-words.txt'
10-
- '.github/ignore-filenames.txt'
11-
dictionaryDefinitions:
12-
- addWords: true
13-
description: 'Manually curated list of words (and filenames) to treat as correctly spelled (in shared .github repo)'
14-
name: '.github/correct-words.txt'
15-
path: 'correct-words.txt'
16-
- addWords: true
17-
description: 'Auto-generated list of words assumed correctly spelled until triaged (in shared .github repo)'
18-
name: '.github/ignore-words.txt'
19-
path: 'ignore-words.txt'
20-
- addWords: true
21-
description: 'Auto-generated list of filenames assumed correctly spelled until triaged (in shared .github repo)'
22-
name: '.github/ignore-filenames.txt'
23-
path: 'ignore-filenames.txt'
24-
import:
25-
- '../../.cspell/common-settings.yml'
26-
- 'overrides.yml'
1+
---
2+
# cSpell:disable
3+
# Copied from: rasa/dotfiles/.github/.cspell/cspell.config.yml
4+
# EDIT THE ABOVE FILE OR YOUR CHANGES WILL BE LOST!
5+
# yaml-language-server: $schema=https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json
6+
7+
dictionaries:
8+
- '.github/correct-words.txt'
9+
- '.github/ignore-words.txt'
10+
- '.github/ignore-filenames.txt'
11+
dictionaryDefinitions:
12+
- addWords: true
13+
description: 'Manually curated list of words (and filenames) to treat as correctly spelled (in shared .github repo)'
14+
name: '.github/correct-words.txt'
15+
path: 'correct-words.txt'
16+
- addWords: true
17+
description: 'Auto-generated list of words assumed correctly spelled until triaged (in shared .github repo)'
18+
name: '.github/ignore-words.txt'
19+
path: 'ignore-words.txt'
20+
- addWords: true
21+
description: 'Auto-generated list of filenames assumed correctly spelled until triaged (in shared .github repo)'
22+
name: '.github/ignore-filenames.txt'
23+
path: 'ignore-filenames.txt'
24+
import:
25+
- '../../.cspell/common-settings.yml'
26+
- 'overrides.yml'

.github/.cspell/ignore-filenames.txt

+20-20
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
## cSpell:disable
2-
## Copied from: rasa/dotfiles/.github/.cspell/ignore-filenames.txt
3-
## EDIT THE ABOVE FILE OR YOUR CHANGES WILL BE LOST!
4-
## Auto-generated cSpell dictionary of filenames to assume are correctly spelled
5-
## See https://cspell.org/docs/dictionaries-custom/
6-
##
7-
8-
codeql
9-
ecrc
10-
grype
11-
hadolint
12-
jsonlintrc
13-
markdownlint
14-
pydeps
15-
pylintrc
16-
pyrightconfig
17-
rasa
18-
regen
19-
shiftleft
20-
textlintrc
1+
## cSpell:disable
2+
## Copied from: rasa/dotfiles/.github/.cspell/ignore-filenames.txt
3+
## EDIT THE ABOVE FILE OR YOUR CHANGES WILL BE LOST!
4+
## Auto-generated cSpell dictionary of filenames to assume are correctly spelled
5+
## See https://cspell.org/docs/dictionaries-custom/
6+
##
7+
8+
codeql
9+
ecrc
10+
grype
11+
hadolint
12+
jsonlintrc
13+
markdownlint
14+
pydeps
15+
pylintrc
16+
pyrightconfig
17+
rasa
18+
regen
19+
shiftleft
20+
textlintrc

0 commit comments

Comments
 (0)