Add eslint

This commit is contained in:
Horcrux
2016-05-04 11:24:05 +08:00
parent a821999f67
commit be8c273adf
31 changed files with 316 additions and 94 deletions
+1 -3
View File
@@ -1,10 +1,8 @@
import React, {
Component,
PropTypes
} from 'react-native';
import Shape, {CIRCLE} from './Shape';
import {circleProps, pathProps, fillProps, strokeProps} from '../lib/props';
import _ from 'lodash';
class Circle extends Shape{
static displayName = 'Circle';
@@ -23,7 +21,7 @@ class Circle extends Shape{
constructor() {
super(...arguments);
this.type = CIRCLE;
};
}
}
export default Circle;