Implied by use of ES6 modules.
"rules": {
// key: 0 = allow, 1 = warn, 2 = error
"comma-dangle": [0, "always-multiline"],
+ "global-strict": [0],
"no-process-exit": [0],
"no-underscore-dangle": [0],
"no-use-before-define": [0],
"quotes": [1, "single", "avoid-escape"],
- "strict": [2, "global"]
+ "strict": [0]
}
}
* @flow
*/
-'use strict';
-
import DIGITS from './DIGITS';
import DynamicField from './DynamicField.react';
import Field from './Field.react';
* @flow
*/
-'use strict';
-
const DIGITS = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
export default DIGITS;
* @flow
*/
-'use strict';
-
import React from 'react';
import {
default as Field,
* @flow
*/
-'use strict';
-
import DIGITS from './DIGITS';
import React from 'react';
import convert from './convert';
* @flow
*/
-'use strict';
-
import React from 'react';
export default class Label extends React.Component {
* @flow
*/
-'use strict';
-
import React from 'react';
import {ValuePropType} from './Field.react';
import convert from './convert';
* @flow
*/
-'use strict';
-
import addDigits from './addDigits';
import getDigits from './getDigits';
import joinDigits from './joinDigits';
* @flow
*/
-'use strict';
-
export default function addDigits(
aDigits: Array<number>,
bDigits: Array<number>,
* @flow
*/
-'use strict';
-
import addDigits from './addDigits';
import getDigits from './getDigits';
import joinDigits from './joinDigits';
* @flow
*/
-'use strict';
-
import DIGITS from './DIGITS';
/**
* @flow
*/
-'use strict';
-
import DIGITS from './DIGITS';
function encode(number: string, base: number) {
* @flow
*/
-'use strict';
-
import addDigits from './addDigits';
/**