Skip to content

Commit

Permalink
Merge pull request #395 from bannergress/fix-editorconfig-settings
Browse files Browse the repository at this point in the history
Adjust .editorconfig so that applying it does not result in a complete reformatting of all code
  • Loading branch information
ewoerner authored Sep 22, 2024
2 parents 319ecb7 + bd6a7db commit a8aa0ae
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

[*]
Expand All @@ -10,4 +7,3 @@ end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 120
2 changes: 1 addition & 1 deletion src/pages/error/Error.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import RecentBanners from '../../components/recent-banners'
import './error.less'

const Error: React.FC = () => {
const [ issues, setIssues] = useState<Array<Issue>>([])
const [issues, setIssues] = useState<Array<Issue>>([])
const { t } = useTranslation()
const titleList: string = t('error.newestBanners')
const addIssues = useCallback(
Expand Down

0 comments on commit a8aa0ae

Please sign in to comment.