Skip to content

Commit

Permalink
remove some stray bits
Browse files Browse the repository at this point in the history
  • Loading branch information
fgregg committed Dec 1, 2023
1 parent c845643 commit ee8eaed
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 77 deletions.
31 changes: 0 additions & 31 deletions .eslintrc.js

This file was deleted.

37 changes: 0 additions & 37 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,4 @@
repos:
# Standard pre-commit hooks
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.3.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace

# Black config (Python formatter)
- repo: https://github.com/psf/black
rev: 22.3.0
Expand All @@ -22,32 +14,3 @@ repos:
- id: flake8
args: [--config=.flake8]

# DjHTML config (Django template indenter)
- repo: https://github.com/rtts/djhtml
rev: v1.5.1
hooks:
- id: djhtml
# Indent only HTML files in template directories
files: .*/templates/.*\.html$
args: [--tabwidth=2]

# Prettier config (Javascript formatter)
# See ./.prettierjson.rc for additional configs
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.5.1
hooks:
- id: prettier
exclude: ^(councilmatic_core/static/js/lib/|councilmatic_core/static/css/bootstrap|councilmatic_core/templates/)
files: \.(js|ts|jsx|tsx|css|less|json|markdown|md|yaml|yml)$

# Eslint config (Javascript linter)
# See ./.eslintrc.js for additional configs
- repo: https://github.com/pre-commit/mirrors-eslint
rev: "1f7d592"
hooks:
- id: eslint
exclude: ^(councilmatic_core/static/js/lib/)
additional_dependencies:
- [email protected]
- [email protected]
- [email protected]
6 changes: 0 additions & 6 deletions .prettierrc.json

This file was deleted.

6 changes: 3 additions & 3 deletions councilmatic_core/migrations/0053_add_councilmatic_bio.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
class Migration(migrations.Migration):

dependencies = [
('councilmatic_core', '0052_convert_last_action_date_to_datefield'),
("councilmatic_core", "0052_convert_last_action_date_to_datefield"),
]

operations = [
migrations.AddField(
model_name='person',
name='councilmatic_biography',
model_name="person",
name="councilmatic_biography",
field=models.TextField(blank=True, null=True),
),
]

0 comments on commit ee8eaed

Please sign in to comment.