├── .githooks └── pre-commit ├── .github ├── CODEOWNERS ├── release.yml └── workflows │ ├── create-release-pr.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src └── textlint-rule-ja-no-mixed-period.ts ├── test └── textlint-rule-ja-no-mixed-period-test.ts ├── tsconfig.json └── yarn.lock /.githooks/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | npx --no-install lint-staged 3 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textlint-ja/textlint-rule-ja-no-mixed-period/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textlint-ja/textlint-rule-ja-no-mixed-period/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/create-release-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textlint-ja/textlint-rule-ja-no-mixed-period/HEAD/.github/workflows/create-release-pr.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textlint-ja/textlint-rule-ja-no-mixed-period/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textlint-ja/textlint-rule-ja-no-mixed-period/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textlint-ja/textlint-rule-ja-no-mixed-period/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textlint-ja/textlint-rule-ja-no-mixed-period/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textlint-ja/textlint-rule-ja-no-mixed-period/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textlint-ja/textlint-rule-ja-no-mixed-period/HEAD/package.json -------------------------------------------------------------------------------- /src/textlint-rule-ja-no-mixed-period.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textlint-ja/textlint-rule-ja-no-mixed-period/HEAD/src/textlint-rule-ja-no-mixed-period.ts -------------------------------------------------------------------------------- /test/textlint-rule-ja-no-mixed-period-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textlint-ja/textlint-rule-ja-no-mixed-period/HEAD/test/textlint-rule-ja-no-mixed-period-test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textlint-ja/textlint-rule-ja-no-mixed-period/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/textlint-ja/textlint-rule-ja-no-mixed-period/HEAD/yarn.lock --------------------------------------------------------------------------------