Skip to content

Commit

Permalink
linting, 14.7.1rc
Browse files Browse the repository at this point in the history
  • Loading branch information
spencermountain committed Nov 11, 2022
1 parent 5ff9703 commit f15e8ad
Show file tree
Hide file tree
Showing 12 changed files with 30 additions and 33 deletions.
2 changes: 1 addition & 1 deletion builds/compromise.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion builds/one/compromise-one.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion builds/one/compromise-one.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion builds/three/compromise-three.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion builds/three/compromise-three.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion builds/two/compromise-two.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion builds/two/compromise-two.mjs

Large diffs are not rendered by default.

32 changes: 16 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@
"devDependencies": {
"@rollup/plugin-node-resolve": "15.0.1",
"amble": "1.3.0",
"eslint": "8.26.0",
"eslint-plugin-regexp": "1.9.0",
"eslint": "8.27.0",
"eslint-plugin-regexp": "1.10.0",
"nlp-corpus": "4.4.0",
"rollup": "3.2.5",
"rollup-plugin-filesize-check": "0.0.2",
Expand All @@ -114,4 +114,4 @@
"_tests/**"
],
"license": "MIT"
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { convert } from 'suffix-thumb'
import toAdverb from './adverbs/toAdverb.js'
// import toAdverb from './adverbs/toAdverb.js'


const toSuperlative = function (adj, model) {
Expand Down
7 changes: 2 additions & 5 deletions src/4-four/facts/parse/index.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@

import parseVerb from './verb.js'
import parseNoun from './noun.js'
import parseAdjective from './adjective.js'
import parsePivot from './pivot.js'
import postProcess from './postProcess.js'



const chunkType = function (chunk) {
if (chunk.isVerb().found) {
return 'Verb'
Expand Down Expand Up @@ -41,7 +38,7 @@ const getParts = function (s) {
res.obj.mod = res.obj.mod || {}
res.obj.mod[pivot] = parseNoun(chunk)
} else {
console.log('=-=-=-= missing mod -=-=-=-')
// console.log('=-=-=-= missing mod -=-=-=-')
}
} else {
res.obj = parseNoun(chunk)
Expand Down Expand Up @@ -78,7 +75,7 @@ const getParts = function (s) {
chunks.forEach(chunk => {
let type = chunkType(chunk)
if (!type) {
console.log(' ! ' + chunk.text())
// console.log(' ! ' + chunk.text())
return
}
process[type](chunk)
Expand Down
2 changes: 1 addition & 1 deletion src/_version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export default '14.7.0'
export default '14.7.1'

0 comments on commit f15e8ad

Please sign in to comment.