Skip to content

Commit

Permalink
Merge pull request #27 from petercort/data-normalization
Browse files Browse the repository at this point in the history
adding linter and fixing a bunch of misc changed outlined in issue 24
  • Loading branch information
petercort authored Dec 29, 2024
2 parents 78b0faa + 53482d1 commit 0404317
Show file tree
Hide file tree
Showing 15 changed files with 983 additions and 114 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Changelog


### Version 1.2.0

#### bugfix
* PR [#27](https://github.com/petercort/FBF-Buddy/pull/27) - adding linter and fixing a bunch of misc changed outlined in issue 24



### Version 1.1.1

#### chore
Expand Down
2 changes: 1 addition & 1 deletion app.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.1
1.2.0
10 changes: 10 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import globals from "globals";
import pluginJs from "@eslint/js";


/** @type {import('eslint').Linter.Config[]} */
export default [
{files: ["**/*.js"], languageOptions: {sourceType: "commonjs"}},
{languageOptions: { globals: globals.node }},
pluginJs.configs.recommended,
];
Loading

0 comments on commit 0404317

Please sign in to comment.