Skip to content

Commit 882cd4b

Browse files
authored
Travis-ci code quality validation
Implement portions of #29
1 parent 314a53e commit 882cd4b

38 files changed

+247
-148
lines changed

.eslintrc

+82-12
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,87 @@
1414
"plugins": [
1515
"flowtype"
1616
],
17+
1718
"parserOptions": {
1819
"sourceType": "module",
1920
"ecmaFeatures": {
2021
"experimentalObjectRestSpread": true
2122
}
2223
},
2324

25+
"settings": {
26+
"flowtype": {
27+
"onlyFilesWithFlowAnnotation": false
28+
}
29+
},
30+
31+
2432
"rules": {
33+
////////// Flow //////////
34+
35+
"flowtype/boolean-style": [
36+
1,
37+
"boolean"
38+
],
39+
"flowtype/define-flow-type": 0,
40+
"flowtype/delimiter-dangle": [
41+
1,
42+
"never"
43+
],
44+
"flowtype/generic-spacing": [
45+
1,
46+
"never"
47+
],
48+
"flowtype/no-primitive-constructor-types": 2,
49+
"flowtype/no-types-missing-file-annotation": 2,
50+
"flowtype/no-weak-types": [2, {
51+
"any": false,
52+
"Function": true,
53+
"Object": true
54+
}],
55+
"flowtype/object-type-delimiter": [
56+
2,
57+
"comma"
58+
],
59+
"flowtype/require-parameter-type": 0,
60+
"flowtype/require-return-type": [
61+
0,
62+
"always",
63+
{
64+
"annotateUndefined": "never"
65+
}
66+
],
67+
"flowtype/require-valid-file-annotation": 0,
68+
"flowtype/semi": [
69+
2,
70+
"always"
71+
],
72+
"flowtype/space-after-type-colon": [
73+
2,
74+
"always"
75+
],
76+
"flowtype/space-before-generic-bracket": [
77+
0,
78+
"never"
79+
],
80+
"flowtype/space-before-type-colon": [
81+
0,
82+
"never"
83+
],
84+
"flowtype/type-id-match": [
85+
0,
86+
"^([A-Z][a-z0-9]+)+Type$"
87+
],
88+
"flowtype/union-intersection-spacing": [
89+
1,
90+
"always"
91+
],
92+
"flowtype/use-flow-type": 0,
93+
"flowtype/valid-syntax": 0,
94+
2595
////////// Possible Errors //////////
2696

27-
"no-comma-dangle": 0, // disallow trailing commas in object literals
97+
"comma-dangle": 1, // disallow trailing commas in object literals
2898
"no-cond-assign": 0, // disallow assignment in conditional expressions
2999
"no-console": 1, // disallow use of console (off by default in the node environment)
30100
"no-constant-condition": 0, // disallow use of constant expressions in conditions
@@ -39,7 +109,7 @@
39109
"no-extra-semi": 0, // disallow unnecessary semicolons
40110
"no-func-assign": 0, // disallow overwriting functions written as function declarations
41111
"no-inner-declarations": 0, // disallow function or variable declarations in nested blocks
42-
"no-invalid-regexp": 0, // disallow invalid regular expression strings in the RegExp constructor
112+
"no-invalid-regexp": 1, // disallow invalid regular expression strings in the RegExp constructor
43113
"no-irregular-whitespace": 0, // disallow irregular whitespace outside of strings and comments
44114
"no-negated-in-lhs": 0, // disallow negation of the left operand of an in expression
45115
"no-obj-calls": 0, // disallow the use of object properties of the global object (Math and JSON) as functions
@@ -57,18 +127,18 @@
57127
"block-scoped-var": 0, // treat var statements as if they were block scoped (off by default)
58128
"complexity": 0, // specify the maximum cyclomatic complexity allowed in a program (off by default)
59129
"consistent-return": 0, // require return statements to either always or never specify values
60-
"curly": 0, // specify curly brace conventions for all control statements
130+
"curly": 1, // specify curly brace conventions for all control statements
61131
"default-case": 0, // require default case in switch statements (off by default)
62132
"dot-notation": 0, // encourages use of dot notation whenever possible
63133
"eqeqeq": 0, // require the use of === and !==
64134
"guard-for-in": 0, // make sure for-in loops have an if statement (off by default)
65135
"no-alert": 0, // disallow the use of alert, confirm, and prompt
66136
"no-caller": 0, // disallow use of arguments.caller or arguments.callee
67137
"no-div-regex": 0, // disallow division operators explicitly at beginning of regular expression (off by default)
68-
"no-else-return": 0, // disallow else after a return in an if (off by default)
138+
"no-else-return": 1, // disallow else after a return in an if (off by default)
69139
"no-empty-label": 0, // disallow use of labels for anything other then loops and switches
70140
"no-eq-null": 0, // disallow comparisons to null without a type-checking operator (off by default)
71-
"no-eval": 0, // disallow use of eval()
141+
"no-eval": 2, // disallow use of eval()
72142
"no-extend-native": 0, // disallow adding to native types
73143
"no-extra-bind": 0, // disallow unnecessary function binding
74144
"no-fallthrough": 0, // disallow fallthrough of case statements
@@ -96,7 +166,7 @@
96166
"no-unused-expressions": 1, // disallow usage of expressions in statement position
97167
"no-void": 0, // disallow use of void operator (off by default)
98168
"no-warning-comments": 0, // disallow usage of configurable warning terms in comments, e.g. TODO or FIXME (off by default)
99-
"no-with": 0, // disallow use of the with statement
169+
"no-with": 2, // disallow use of the with statement
100170
"radix": 0, // require use of the second argument for parseInt() (off by default)
101171
"vars-on-top": 0, // requires to declare all vars on top of their containing scope (off by default)
102172
"wrap-iife": 0, // require immediate function invocation to be wrapped in parentheses (off by default)
@@ -119,7 +189,7 @@
119189
"no-shadow-restricted-names": 0, // disallow shadowing of names such as arguments
120190
"no-undef": 1, // disallow use of undeclared variables unless mentioned in a /*global */ block
121191
"no-undef-init": 0, // disallow use of undefined when initializing variables
122-
"no-undefined": 0, // disallow use of undefined variable (off by default)
192+
"no-undefined": 2, // disallow use of undefined variable (off by default)
123193
"no-unused-vars": 1, // disallow declaration of variables that are not used in the code
124194
"no-use-before-define": 1, // disallow use of variables before they are defined
125195

@@ -137,7 +207,7 @@
137207

138208
////////// Stylistic Issues //////////
139209

140-
"brace-style": 0, // enforce one true brace style (off by default)
210+
"brace-style": 1, // enforce one true brace style (off by default)
141211
"camelcase": 1, // require camel case names
142212
"comma-spacing": 0, // enforce spacing before and after comma
143213
"comma-style": 1, // enforce one true comma style (off by default)
@@ -151,10 +221,10 @@
151221
"new-parens": 1, // disallow the omission of parentheses when invoking a constructor with no arguments
152222
"no-array-constructor": 1, // disallow use of the Array constructor
153223
"no-inline-comments": 1, // disallow comments inline after code (off by default)
154-
"no-lonely-if": 0, // disallow if as the only statement in an else block (off by default)
155-
"no-mixed-spaces-and-tabs": 0, // disallow mixed spaces and tabs for indentation
224+
"no-lonely-if": 1, // disallow if as the only statement in an else block (off by default)
225+
"no-mixed-spaces-and-tabs": 2, // disallow mixed spaces and tabs for indentation
156226
"no-multiple-empty-lines": 0, // disallow multiple empty lines (off by default)
157-
"no-nested-ternary": 0, // disallow nested ternary expressions (off by default)
227+
"no-nested-ternary": 1, // disallow nested ternary expressions (off by default)
158228
"no-new-object": 0, // disallow use of the Object constructor
159229
"no-space-before-semi": 0, // disallow space before semicolon
160230
"no-spaced-func": 0, // disallow space between function identifier and application
@@ -183,7 +253,7 @@
183253

184254
////////// ECMAScript 6 //////////
185255

186-
"no-var": 0, // require let or const instead of var (off by default)
256+
"no-var": 1, // require let or const instead of var (off by default)
187257
"generator-star": 0, // enforce the position of the * in generator functions (off by default)
188258

189259

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
language: node_js
22
node_js:
33
- "8.0"
4+
before_script: "npm run validate"
45
script: "npm test"
56
after_success:
67
- "npm run coverage"

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
"description": "Alternative syntax for WebAssembly text format",
55
"main": "index.js",
66
"scripts": {
7+
"validate": "npm run lint",
78
"test": "nyc ava",
89
"tdd": "ava",
910
"coverage": "npm test && nyc report --reporter=text-lcov | coveralls",
1011
"debug": "node --inspect-brk node_modules/ava/profile.js",
1112
"build": "node_modules/rollup/bin/rollup -c rollup.config.js && cp dist/walt.js docs/dist/",
12-
"flow": "flow"
13+
"flow": "flow",
14+
"lint": "eslint src"
1315
},
1416
"repository": {
1517
"type": "git",

src/__tests__/type-conversion-spec.js

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import parseContstant from "../parser/constant";
33
import parseExpression from "../parser/expression";
44
import { mockContext } from "../utils/mocks";
55
import compile from "..";
6-
import printNode from "../utils/print-node";
76

87
const compileAndRun = src => WebAssembly.instantiate(compile(src));
98

+10-20
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,22 @@
1-
import test from 'ava';
2-
import { u8, get } from 'wasm-types';
3-
import { I32 } from '../value_type';
4-
import { EXTERN_FUNCTION } from '../external_kind';
5-
import opcode from '../opcode';
6-
import emit from '..';
1+
import test from "ava";
2+
import { I32 } from "../value_type";
3+
import { EXTERN_FUNCTION } from "../external_kind";
4+
import opcode from "../opcode";
5+
import emit from "..";
76

87
// This ast structure tests more than just function sections.
98
// But for us to even test the function section we need to have
109
// types AND function bodies so here you go.
1110
const meaningOfLife = 42;
1211
const ast = {
13-
Types: [
14-
{ params: [], result: I32 }
15-
],
12+
Types: [{ params: [], result: I32 }],
1613
Functions: [0],
17-
Code: [
18-
{ locals: [], code: [ { kind: opcode.GetGlobal, params: [0] } ] }
19-
],
20-
Exports: [
21-
{ kind: EXTERN_FUNCTION, field: 'echo', index: 0 }
22-
],
23-
Globals: [
24-
{ mutable: 0, type: I32, init: meaningOfLife }
25-
]
14+
Code: [{ locals: [], code: [{ kind: opcode.GetGlobal, params: [0] }] }],
15+
Exports: [{ kind: EXTERN_FUNCTION, field: "echo", index: 0 }],
16+
Globals: [{ mutable: 0, type: I32, init: meaningOfLife }]
2617
};
2718

28-
test('compiles functions accurately', t => {
19+
test("compiles functions accurately", t => {
2920
const stream = emit(ast);
3021
return WebAssembly.instantiate(
3122
stream.buffer()
@@ -37,4 +28,3 @@ test('compiles functions accurately', t => {
3728
t.is(instance.exports.echo(), meaningOfLife);
3829
});
3930
});
40-

src/emitter/__tests__/globals-exports-spec.js

-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import test from "ava";
2-
import { u8, get } from "wasm-types";
32
import { I32 } from "../value_type";
43
import { EXTERN_GLOBAL } from "../external_kind";
5-
import opcode from "../opcode";
64
import emit from "..";
75

86
// TODO:

src/emitter/section/globals.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { u8, f32, f64 } from "wasm-types";
22
import { I32, F64, F32, getTypeString } from "../value_type";
33
import { varuint32, varint32 } from "../numbers";
4-
import { emitString } from "../string";
54
import opcode from "../opcode";
65
import OutputStream from "../../utils/output-stream";
76

src/emitter/section/index.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,11 @@ import {
1111
SECTION_TYPE,
1212
SECTION_IMPORT,
1313
SECTION_FUNCTION,
14-
SECTION_TABLE,
1514
SECTION_MEMORY,
1615
SECTION_GLOBAL,
1716
SECTION_EXPORT,
18-
SECTION_START,
1917
SECTION_ELEMENT,
20-
SECTION_CODE,
21-
SECTION_DATA
18+
SECTION_CODE
2219
} from "./codes";
2320

2421
export default {

src/emitter/section/writer.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ import OutputStream from "../../utils/output-stream";
44

55
const writer = ({ type, label, emitter }) => ast => {
66
const field = ast[label];
7-
if (!field || !field.length) return null;
7+
if (!field || !field.length) {
8+
return null;
9+
}
810

911
const stream = new OutputStream().push(u8, type, label + " section");
1012
const entries = emitter(field);

src/emitter/string.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ import { varuint32 } from './numbers';
33

44
export function emitString(stream, string, debug = 'string length') {
55
stream.push(varuint32, string.length, debug);
6-
for(let i = 0; i < string.length; i++)
7-
stream.push(u8, string.charCodeAt(i), string[i]);
6+
for(let i = 0; i < string.length; i++) {
7+
stream.push(u8, string.charCodeAt(i), string[i]);
8+
}
89
return stream;
910
}

src/emitter/types.js

-18
This file was deleted.

src/generator/__tests__/memory-assignment-spec.js

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import {
88
OBJECT_KEY_TYPES
99
} from "../../parser/metadata";
1010
import { mockContext } from "../../utils/mocks";
11-
import printNode from "../../utils/print-node";
1211

1312
test("unary negation, arrays", t => {
1413
const ctx = mockContext("x[0] = ((x * 7 % 200) - 100) / 100.0");

src/generator/flow/types.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//@flow
12
import type { NodeType } from "../../flow/types";
23

34
export type RawOpcodeType = {

src/parser/__tests__/expression-spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import test from "ava";
22
import expression from "../expression";
3-
import { TYPE_USER, TYPE_ARRAY } from "../metadata";
3+
import { TYPE_ARRAY } from "../metadata";
44
import { mockContext } from "../../utils/mocks";
55
import printNode from "../../utils/print-node";
66

src/parser/__tests__/loop-spec.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import statement from "../statement";
22
import test from "ava";
33
import { mockContext } from "../../utils/mocks";
4-
import printNode from "../../utils/print-node";
54

65
test("while parser", t => {
76
const ctx = mockContext("while (x < 10) { x += 1; }");

src/parser/__tests__/parser-spec.js

-10
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,8 @@
11
import test from "ava";
22
import Parser from "..";
3-
import { I32 } from "../../emitter/value_type";
4-
import { EXTERN_GLOBAL } from "../../emitter/external_kind";
53
import Tokenizer from "../../tokenizer";
64
import TokenStream from "../../utils/token-stream";
75
import Stream from "../../utils/stream";
8-
import emit from "../../emitter";
9-
10-
const tokenizer = {
11-
empty: new Tokenizer(new Stream("")),
12-
semicolon: new Tokenizer(new Stream("")),
13-
constGlobals: new Tokenizer(new Stream("const answer: i32 = 42;")),
14-
exportGlobals: new Tokenizer(new Stream("export const answer: i32 = 42;"))
15-
};
166

177
const prepare = string =>
188
new TokenStream(new Tokenizer(new Stream(string)).parse());

src/parser/__tests__/type-spec.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import test from "ava";
22
import typeParser from "../type";
33
import { mockContext } from "../../utils/mocks";
4-
import printNode from "../../utils/print-node";
54

65
test("type parser, object", t => {
76
const ctx = mockContext("type TestType = { 'foo': i32, 'bar': i32 };");

0 commit comments

Comments
 (0)